home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Splash
- AutoRedraw = -1 'True
- BorderStyle = 0 'None
- ClientHeight = 3975
- ClientLeft = 2490
- ClientTop = 3690
- ClientWidth = 7740
- Height = 4380
- Left = 2430
- LinkTopic = "Form1"
- Picture = SPLASH.FRX:0000
- ScaleHeight = 3975
- ScaleWidth = 7740
- Top = 3345
- Width = 7860
- Begin Label Label2
- BackStyle = 0 'Transparent
- Caption = "100%"
- Height = 225
- Index = 1
- Left = 7035
- TabIndex = 2
- Top = 3045
- Width = 465
- End
- Begin Label Label2
- BackStyle = 0 'Transparent
- Caption = "0%"
- Height = 225
- Index = 0
- Left = 2835
- TabIndex = 1
- Top = 3045
- Width = 345
- End
- Begin Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Load Status..."
- Height = 240
- Left = 4605
- TabIndex = 0
- Top = 3045
- Width = 1215
- End
- Begin Line Line2
- BorderColor = &H00FFFFFF&
- BorderWidth = 2
- Index = 1
- X1 = 7500
- X2 = 7500
- Y1 = 2550
- Y2 = 2970
- End
- Begin Line Line1
- BorderColor = &H00FFFFFF&
- BorderWidth = 2
- Index = 1
- X1 = 7500
- X2 = 2835
- Y1 = 2955
- Y2 = 2970
- End
- Begin Line Line2
- BorderColor = &H00808080&
- BorderWidth = 2
- Index = 0
- X1 = 2850
- X2 = 2850
- Y1 = 2520
- Y2 = 2940
- End
- Begin Line Line1
- BorderColor = &H00808080&
- BorderWidth = 2
- Index = 0
- X1 = 7500
- X2 = 2835
- Y1 = 2520
- Y2 = 2535
- End
- Begin Shape rctStatusBar
- BackColor = &H00800000&
- BackStyle = 1 'Opaque
- BorderStyle = 0 'Transparent
- Height = 340
- Left = 2880
- Top = 2585
- Width = 15
- End
- Option Explicit
- Dim iStatusBarWidth As Integer
- Sub Form_Click ()
- Unload Me
- End Sub
- Sub Form_Load ()
- 'Center the splash screen
- Me.Left = (screen.Width - Me.Width) / 2
- Me.Top = (screen.Height - Me.Height) / 2
- End Sub
- Sub Panel3D1_DblClick ()
- Unload Splash
- End Sub
-